From 3a43b8ba5676d9a43a1b516fceed75b9e2efb371 Mon Sep 17 00:00:00 2001 From: robertl Date: Mon, 12 Sep 2005 21:04:31 +0000 Subject: [PATCH] Knock sizeof(geocache_data) down from 52 to 40 on IA32. --- defs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/defs.h b/defs.h index 70429e466..32a9935ac 100644 --- a/defs.h +++ b/defs.h @@ -150,11 +150,11 @@ typedef struct { } utf_string; typedef struct { - geocache_type type; - geocache_container container; int id; /* The decimal cache number */ - int diff; /* (multiplied by ten internally) */ - int terr; /* (likewise) */ + geocache_type type:5; + geocache_container container:4; + int diff:6; /* (multiplied by ten internally) */ + int terr:6; /* (likewise) */ time_t exported; time_t last_found; char *placer; /* Placer name */ -- 2.30.2